home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / makefile < prev    next >
Makefile  |  1990-12-20  |  45KB  |  887 lines

  1. # Makefile for ET++
  2.  
  3. MAKE    = make
  4. ETCC    = etCC
  5.  
  6. #---- C++2.0
  7. CCFLAGS =
  8. CFLAGS  = 
  9. CC      = cc
  10. LD      = ld
  11.  
  12. #---- g++
  13. #CCFLAGS= -O -fstrength-reduce -W 
  14. #CFLAGS= -O -fstrength-reduce -W  
  15. #CC     = /usr/local/bin/gcc
  16. #LD     = /usr/local/lib/gcc-ld
  17.  
  18. .SUFFIXES: .C
  19.  
  20. .C.o:
  21.     $(ETCC) $(CCFLAGS) -c $<
  22.  
  23. #-------------------------------------------------------------------------------
  24. # memory management
  25. #-------------------------------------------------------------------------------
  26. MALLOC_DIR      =   MALLOC
  27. MALLOC          =   $(MALLOC_DIR)/storage.o
  28.  
  29. #-------------------------------------------------------------------------------
  30. # supported window systems
  31. #-------------------------------------------------------------------------------
  32. SUNSERVER       =   SERVER/sunserver.o  # a server for sunwindows/sunview
  33. XSERVER         =   XSERVER/xserver.o   # X11.3
  34. NEWSSERVER      =   NEWS/newsserver.o   # NeWS 1.1
  35. SUNWINDOW       =   SUNWINDOW/sun.o     # sunwindow/sunview
  36.  
  37. #-------------------------------------------------------------------------------
  38. # supported operating systems
  39. #-------------------------------------------------------------------------------
  40. SUNOS           =   SUNOS/sunos.o
  41.  
  42. #-------------------------------------------------------------------------------
  43. # supported printers
  44. #-------------------------------------------------------------------------------
  45. POSTSCRIPT      =   POSTSCRIPT/postscript.o 
  46. PIC             =   PIC/pic.o           # pic output to be used with troff
  47. PICT            =   PICT/pict.o         # pic output to be used with troff
  48.  
  49. #-------------------------------------------------------------------------------
  50. # programming environment
  51. #-------------------------------------------------------------------------------
  52.  
  53. ET_PROGENV      =   PROGENV/etprogenv.o
  54.  
  55. #-------------------------------------------------------------------------------
  56. # configuration
  57. #-------------------------------------------------------------------------------
  58.  
  59. #---- window system
  60.  
  61. WS_OFILES       =   $(SUNSERVER) $(NEWSSERVER) $(XSERVER) $(SUNWINDOW)
  62. WS_IFDEFS       =   -DWS_SUNSERVER -DWS_NEWS -DWS_X -DWS_SUNWINDOW
  63. WS_DIRS         =   SUNWINDOW XSERVER SERVER NEWS 
  64.  
  65. WS_OFILES       =   $(SUNWINDOW) $(XSERVER)
  66. WS_IFDEFS       =   -DWS_SUNWINDOW -DWS_X 
  67. WS_DIRS         =   SUNWINDOW XSERVER
  68.  
  69. #---- printer
  70.  
  71. PR_OFILES       =   $(POSTSCRIPT) $(PIC) $(PICT)
  72. PR_IFDEFS       =   -DPR_POSTSCRIPT -DPR_PIC -DPR_PICT
  73. PR_DIRS         =   POSTSCRIPT PIC PICT
  74.  
  75. #---- operating system
  76.  
  77. OS_OFILES       =   $(SUNOS)
  78. OS_DIRS         =   SUNOS
  79. OS_IFDEFS       =   -DOS_SUNOS
  80.  
  81. #---- programming environment
  82.  
  83. PE_OFILES       =   $(ET_PROGENV)
  84. PE_IFDEFS       =   -DET_PROGENV
  85. PE_DIRS         =   PROGENV
  86.  
  87. #-------------------------------------------------------------------------------
  88. # end of configuration
  89. #-------------------------------------------------------------------------------
  90.  
  91. STORAGEO        =   $(MALLOC)
  92.  
  93. DIRS            =   $(WS_DIRS) $(PR_DIRS) $(PE_DIRS) $(OS_DIRS) $(MALLOC_DIR) IO 
  94.  
  95. #-------------------------------------------------------------------------------
  96.  
  97. all:        et col
  98.  
  99. #-------------------------------------------------------------------------------
  100. # basic data structures (non graphical classes)
  101. #-------------------------------------------------------------------------------
  102.  
  103. OFILES1=    \
  104.         AccessMem.o \
  105.         Error.o \
  106.         FileType.o \
  107.         ProgEnv.o \
  108.         FixedStorage.o \
  109.         Iterator.o \
  110.         Root.o \
  111.         CType.o \
  112.         String.o \
  113.         Types.o \
  114.         Math.o \
  115.         regex.o \
  116.         $(OS_OFILES) \
  117.         BitSet.o \
  118.         ObjFloat.o \
  119.         Object.o \
  120.         IdDictionary.o \
  121.         Dictionary.o \
  122.         ObjInt.o \
  123.         PathLookup.o \
  124.         ByteArray.o \
  125.         Collection.o \
  126.         Bag.o \
  127.         SortedOList.o \
  128.         RegularExp.o \
  129.         OrdColl.o \
  130.         PttyConnection.o \
  131.         StreamConnection.o \
  132.         Directory.o \
  133.         System.o \
  134.         ObjList.o \
  135.         SeqColl.o \
  136.         Metric.o \
  137.         Rectangle.o \
  138.         Point.o \
  139.         ObjectTable.o \
  140.         Set.o \
  141.         ObjArray.o \
  142.         Class.o \
  143.         ClassManager.o \
  144.         $(STORAGEO) \
  145.         Storage.o \
  146.         IO/etio.o
  147.  
  148. ofiles1.o:  $(OFILES1)
  149.         $(LD) -X -r -o $@ $(OFILES1)
  150.  
  151. ObjectTable.o:     ObjectTable.C
  152.         $(ETCC) -c $(PE_IFDEFS) $<
  153.  
  154. #-------------------------------------------------------------------------------
  155. # graphics interface
  156. #-------------------------------------------------------------------------------
  157.  
  158. OFILES2 =   \
  159.         Ink.o \
  160.         Font.o \
  161.         Bitmap.o \
  162.         DevBitmap.o \
  163.         PictPort.o \
  164.         Picture.o \
  165.         PrintPort.o \
  166.         Token.o \
  167.         WindowPort.o \
  168.         WindowSystem.o \
  169.         Port.o
  170.  
  171. ofiles2.o:  $(OFILES2)
  172.         $(LD) -X -r -o $@ $(OFILES2)
  173.  
  174. #-------------------------------------------------------------------------------
  175. # graphical classes
  176. #-------------------------------------------------------------------------------
  177.  
  178. OFILES3=    \
  179.         Form.o \
  180.         ClipBoard.o \
  181.         GraphView.o \
  182.         MenuBar.o \
  183.         ShellTView.o \
  184.         VObjectTView.o \
  185.         VObjectText.o \
  186.         CodeTextView.o \
  187.         FixLineTView.o \
  188.         GotoDialog.o \
  189.         Splitter.o \
  190.         TreeView.o \
  191.         Icon.o \
  192.         View.o \
  193.         PrintDialog.o \
  194.         Printer.o \
  195.         Application.o \
  196.         TextView.o \
  197.         ChangeDialog.o \
  198.         FindDialog.o \
  199.         TextCmd.o \
  200.         FileDialog.o \
  201.         Document.o \
  202.         CmdHistDoc.o \
  203.         Panner.o \
  204.         Scroller.o \
  205.         ScrollBar.o \
  206.         Expander.o \
  207.         Slider.o \
  208.         Menu.o \
  209.         CollView.o \
  210.         Alert.o \
  211.         StyledText.o \
  212.         GapText.o \
  213.         RunArray.o \
  214.         EditTextItem.o \
  215.         LineItem.o \
  216.         EnumItem.o \
  217.         CycleItem.o \
  218.         BackgroundItem.o \
  219.         OneOfCluster.o \
  220.         ManyOfCluster.o \
  221.         ShadowItem.o \
  222.         NumItem.o \
  223.         FloatItem.o \
  224.         Buttons.o \
  225.         PopupItem.o \
  226.         CheapText.o \
  227.         Dialog.o \
  228.         RestrTView.o \
  229.         StaticTView.o \
  230.         Text.o \
  231.         Mark.o \
  232.         Window.o \
  233.         BorderItems.o \
  234.         Cluster.o \
  235.         Clipper.o \
  236.         BlankWin.o \
  237.         VObjectPair.o \
  238.         Filler.o \
  239.         TextItem.o \
  240.         ImageItem.o \
  241.         VObject.o \
  242.         EvtHandler.o \
  243.         TextFormatter.o \
  244.         Command.o
  245.  
  246. ofiles3.o:  $(OFILES3)
  247.         $(LD) -X -r -o $@ $(OFILES3)
  248.  
  249. MFLAGS  = \
  250.     CFLAGS="$(CFLAGS)" \
  251.     CCFLAGS="$(CCFLAGS)" \
  252.     CC="$(CC)" \
  253.     MAKE="$(MAKE)" \
  254.     ETCC="$(ETCC)" \
  255.     LD="$(LD)" 
  256.     
  257. #-------------------------------------------------------------------------------
  258. # et
  259. #-------------------------------------------------------------------------------
  260.  
  261. #ETO     =   $(PE_OFILES) ofiles3.o Init.o $(WS_OFILES) $(PR_OFILES) ofiles2.o ofiles1.o  
  262. # workaround for ld bug in SunOS 4.1
  263. ETO     =   $(PE_OFILES) $(OFILES3) Init.o $(WS_OFILES) $(PR_OFILES) $(OFILES2) $(OFILES1)  
  264.  
  265. ETDIRS  =   IO MALLOC $(DIRS) images
  266.  
  267. et:     etdirs et.o
  268.  
  269. etdirs: 
  270.     -@for i in $(ETDIRS); do (echo $$i; cd $$i; $(MAKE) $(MFLAGS)); done
  271.  
  272. et.o:   $(ETO) FRC
  273.     $(LD) -X -r -o $@ $(ETO)
  274.  
  275. libet.a:   $(ETO) FRC
  276.     ar rv $@ $(ETO)
  277.     ranlib $@
  278.  
  279. config:
  280.     touch Init.C ObjectTable.C
  281.     $(MAKE)
  282.  
  283. Init.o: Init.C
  284.     $(ETCC) -c $(WS_IFDEFS) $(PE_IFDEFS) $(OS_IFDEFS) $(PR_IFDEFS) $<
  285.  
  286. #-------------------------------------------------------------------------------
  287. # col
  288. #-------------------------------------------------------------------------------
  289.  
  290. COLO    =   InitCol.o ofiles1.o
  291. COLDIRS =   MALLOC SUNOS
  292.  
  293. col:    coldirs col.o InitCol.o
  294.  
  295. coldirs:
  296.     -@for i in $(COLDIRS); do (echo $$i; cd $$i; $(MAKE)); done
  297.  
  298. col.o:  $(COLO) FRC
  299.     $(LD) -X -r -o col.o $(COLO)
  300.  
  301. InitCol.o:  InitCol.C
  302.         $(ETCC) -c $(OS_IFDEFS) $<
  303.  
  304. #-------------------------------------------------------------------------------
  305.  
  306. depend:
  307.     etmakedep $(CCFLAGS) *.[cC]
  308.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  309.  
  310. clean:
  311.     rm -f core *..c errs .rsrc $(ETO)
  312.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  313.  
  314. clobber:    clean
  315.     rm -f *.o .MAP/*.map
  316.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  317.  
  318. touch:
  319.     -@for i in $(DIRS); do (cd $$i; $(MAKE) $@); done
  320.     $(MAKE) -t
  321.     rm -f et.o col.o etdirs coldirs
  322.     $(MAKE)
  323.     
  324. FRC:
  325.  
  326. # DO NOT DELETE THIS LINE -- make depend depends on it.
  327.  
  328. AccessMem.o: AccessMem.h Types.h IO/stream.h Types.h System.h Object.h Root.h
  329. AccessMem.o: CmdNo.h Class.h
  330. Alert.o: Alert.h Dialog.h View.h VObject.h EvtHandler.h Object.h Root.h
  331. Alert.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  332. Alert.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  333. Alert.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  334. Alert.o: Alert_e.h Buttons.h VObjectPair.h BorderItems.h CheapText.h Text.h
  335. Alert.o: String.h Storage.h CType.h StaticTView.h Mark.h OrdColl.h SeqColl.h
  336. Alert.o: ObjArray.h StyledText.h GapText.h RunArray.h ObjList.h
  337. Alert.o: WindowSystem.h BlankWin.h Clipper.h ObjectTable.h images/note.image
  338. Alert.o: images/caution.image images/stop.image images/sun.image
  339. Alert.o: images/error.image
  340. Application.o: ET++.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  341. Application.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h
  342. Application.o: Ink.h Bitmap.h Token.h Application.h Dialog.h View.h VObject.h
  343. Application.o: EvtHandler.h Command.h Collection.h Iterator.h Cluster.h
  344. Application.o: Filler.h ImageItem.h TextItem.h Document.h FileType.h Window.h
  345. Application.o: BlankWin.h Clipper.h BorderItems.h Scroller.h Splitter.h
  346. Application.o: Expander.h Menu.h CollView.h LineItem.h VObjectPair.h String.h
  347. Application.o: Storage.h CType.h Error.h Alert_e.h ObjList.h SeqColl.h
  348. Application.o: IdDictionary.h Dictionary.h Set.h ObjArray.h WindowSystem.h
  349. Application.o: FileDialog.h ObjectTable.h ClassManager.h ClipBoard.h
  350. Application.o: ProgEnv.h FixedStorage.h Buttons.h
  351. BackgroundItem.o: BackgroundItem.h VObject.h EvtHandler.h Object.h Root.h
  352. BackgroundItem.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  353. BackgroundItem.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  354. BackgroundItem.o: Command.h Collection.h Iterator.h Cluster.h Filler.h
  355. BackgroundItem.o: ImageItem.h TextItem.h
  356. Bag.o: Bag.h Set.h ObjArray.h Collection.h Object.h Root.h Types.h
  357. Bag.o: IO/stream.h Types.h CmdNo.h Class.h Iterator.h Error.h
  358. BitSet.o: BitSet.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  359. BitSet.o: Class.h
  360. Bitmap.o: Bitmap.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  361. Bitmap.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h Ink.h
  362. Bitmap.o: Token.h DevBitmap.h Error.h Storage.h WindowSystem.h String.h
  363. Bitmap.o: CType.h
  364. BlankWin.o: BlankWin.h Clipper.h VObject.h EvtHandler.h Object.h Root.h
  365. BlankWin.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  366. BlankWin.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  367. BlankWin.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  368. BlankWin.o: TextItem.h Error.h WindowPort.h WindowSystem.h Menu.h CollView.h
  369. BlankWin.o: View.h LineItem.h VObjectPair.h BorderItems.h ObjectTable.h
  370. BlankWin.o: ClassManager.h FixedStorage.h Storage.h
  371. BorderItems.o: BorderItems.h VObject.h EvtHandler.h Object.h Root.h Types.h
  372. BorderItems.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  373. BorderItems.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  374. BorderItems.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  375. BorderItems.o: TextItem.h String.h Storage.h CType.h
  376. Buttons.o: Buttons.h VObject.h EvtHandler.h Object.h Root.h Types.h
  377. Buttons.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  378. Buttons.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  379. Buttons.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  380. Buttons.o: VObjectPair.h Dialog.h View.h WindowSystem.h
  381. Buttons.o: images/RadioButtonOn.image images/RadioButtonOff.image
  382. Buttons.o: images/RadioButtonFeedback.image images/CheckmarkOn.image
  383. Buttons.o: images/CheckmarkOff.image images/CheckmarkInv.image
  384. ByteArray.o: ByteArray.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  385. ByteArray.o: Class.h String.h Storage.h CType.h
  386. CType.o: CType.h
  387. ChangeDialog.o: RegularExp.h Object.h Root.h Types.h IO/stream.h Types.h
  388. ChangeDialog.o: CmdNo.h Class.h ChangeDialog.h FindDialog.h Dialog.h View.h
  389. ChangeDialog.o: VObject.h EvtHandler.h Port.h System.h Point.h Metric.h
  390. ChangeDialog.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  391. ChangeDialog.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  392. ChangeDialog.o: TextItem.h Alert_e.h String.h Storage.h CType.h TextView.h
  393. ChangeDialog.o: StaticTView.h Text.h Mark.h OrdColl.h SeqColl.h ObjArray.h
  394. ChangeDialog.o: BorderItems.h OneOfCluster.h ManyOfCluster.h EditTextItem.h
  395. ChangeDialog.o: Clipper.h Buttons.h VObjectPair.h Window.h BlankWin.h
  396. ChangeDialog.o: Document.h FileType.h Expander.h Form.h
  397. CheapText.o: CheapText.h Text.h Object.h Root.h Types.h IO/stream.h Types.h
  398. CheapText.o: CmdNo.h Class.h String.h Storage.h CType.h Font.h Rectangle.h
  399. CheapText.o: Metric.h Point.h Port.h System.h Ink.h Bitmap.h Token.h
  400. CheapText.o: RegularExp.h Error.h
  401. Class.o: Class.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Error.h
  402. Class.o: Storage.h String.h CType.h ObjArray.h Collection.h Iterator.h
  403. Class.o: OrdColl.h SeqColl.h ObjectTable.h ClassManager.h AccessMem.h
  404. ClassManager.o: ClassManager.h Object.h Root.h Types.h IO/stream.h Types.h
  405. ClassManager.o: CmdNo.h Class.h Error.h Storage.h String.h CType.h ObjArray.h
  406. ClassManager.o: Collection.h Iterator.h OrdColl.h SeqColl.h SortedOList.h
  407. ClassManager.o: ObjList.h Set.h ObjectTable.h
  408. ClipBoard.o: ClipBoard.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  409. ClipBoard.o: Class.h View.h VObject.h EvtHandler.h Port.h System.h Point.h
  410. ClipBoard.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  411. ClipBoard.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  412. ClipBoard.o: TextItem.h IO/membuf.h IO/streambuf.h ClassManager.h FileType.h
  413. Clipper.o: Clipper.h VObject.h EvtHandler.h Object.h Root.h Types.h
  414. Clipper.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  415. Clipper.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  416. Clipper.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  417. Clipper.o: View.h Error.h BlankWin.h ObjList.h SeqColl.h String.h Storage.h
  418. Clipper.o: CType.h WindowPort.h WindowSystem.h
  419. Cluster.o: Cluster.h VObject.h EvtHandler.h Object.h Root.h Types.h
  420. Cluster.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  421. Cluster.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  422. Cluster.o: Collection.h Iterator.h Filler.h ImageItem.h TextItem.h Math.h
  423. Cluster.o: Storage.h
  424. CmdHistDoc.o: CmdHistDoc.h Document.h EvtHandler.h Object.h Root.h Types.h
  425. CmdHistDoc.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  426. CmdHistDoc.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h FileType.h
  427. CmdHistDoc.o: ObjList.h SeqColl.h Collection.h Iterator.h Menu.h CollView.h
  428. CmdHistDoc.o: View.h VObject.h Command.h Cluster.h Filler.h ImageItem.h
  429. CmdHistDoc.o: TextItem.h LineItem.h VObjectPair.h BorderItems.h Window.h
  430. CmdHistDoc.o: BlankWin.h Clipper.h
  431. CodeTextView.o: Port.h System.h Object.h Root.h Types.h IO/stream.h Types.h
  432. CodeTextView.o: CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h Ink.h
  433. CodeTextView.o: Bitmap.h Token.h FixLineTView.h TextView.h StaticTView.h
  434. CodeTextView.o: Text.h String.h Storage.h CType.h Mark.h OrdColl.h SeqColl.h
  435. CodeTextView.o: Collection.h Iterator.h ObjArray.h View.h VObject.h
  436. CodeTextView.o: EvtHandler.h Command.h Cluster.h Filler.h ImageItem.h
  437. CodeTextView.o: TextItem.h CodeTextView.h StyledText.h GapText.h RunArray.h
  438. CollView.o: CollView.h View.h VObject.h EvtHandler.h Object.h Root.h Types.h
  439. CollView.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  440. CollView.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  441. CollView.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  442. CollView.o: Menu.h LineItem.h VObjectPair.h BorderItems.h String.h Storage.h
  443. CollView.o: CType.h Error.h Math.h
  444. Collection.o: Error.h Types.h IO/stream.h Types.h Collection.h Object.h
  445. Collection.o: Root.h CmdNo.h Class.h Iterator.h OrdColl.h SeqColl.h
  446. Collection.o: ObjArray.h Set.h Bag.h ObjList.h SortedOList.h String.h
  447. Collection.o: Storage.h CType.h
  448. Command.o: Command.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  449. Command.o: Class.h Point.h Error.h String.h Storage.h CType.h Port.h System.h
  450. Command.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h ObjectTable.h
  451. CycleItem.o: CycleItem.h VObject.h EvtHandler.h Object.h Root.h Types.h
  452. CycleItem.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  453. CycleItem.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  454. CycleItem.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  455. CycleItem.o: TextItem.h
  456. DevBitmap.o: DevBitmap.h Root.h Types.h IO/stream.h Types.h Point.h Class.h
  457. DevBitmap.o: Object.h CmdNo.h Ink.h
  458. Dialog.o: Dialog.h View.h VObject.h EvtHandler.h Object.h Root.h Types.h
  459. Dialog.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  460. Dialog.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  461. Dialog.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  462. Dialog.o: Buttons.h VObjectPair.h OrdColl.h SeqColl.h ObjArray.h Menu.h
  463. Dialog.o: CollView.h LineItem.h BorderItems.h Error.h Window.h BlankWin.h
  464. Dialog.o: Clipper.h
  465. Dictionary.o: Dictionary.h Set.h ObjArray.h Collection.h Object.h Root.h
  466. Dictionary.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Iterator.h Bag.h
  467. Dictionary.o: Error.h
  468. Directory.o: Directory.h Root.h
  469. Document.o: ET++.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  470. Document.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h Ink.h
  471. Document.o: Bitmap.h Token.h Application.h Dialog.h View.h VObject.h
  472. Document.o: EvtHandler.h Command.h Collection.h Iterator.h Cluster.h Filler.h
  473. Document.o: ImageItem.h TextItem.h Document.h FileType.h Window.h BlankWin.h
  474. Document.o: Clipper.h BorderItems.h Scroller.h Splitter.h Expander.h Menu.h
  475. Document.o: CollView.h LineItem.h VObjectPair.h String.h Storage.h CType.h
  476. Document.o: Error.h Alert_e.h FileDialog.h Icon.h ObjList.h SeqColl.h
  477. Document.o: ObjectTable.h ClassManager.h images/file.im
  478. EditTextItem.o: EditTextItem.h Clipper.h VObject.h EvtHandler.h Object.h
  479. EditTextItem.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h
  480. EditTextItem.o: System.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  481. EditTextItem.o: Token.h Command.h Collection.h Iterator.h Cluster.h Filler.h
  482. EditTextItem.o: ImageItem.h TextItem.h TextView.h StaticTView.h Text.h
  483. EditTextItem.o: String.h Storage.h CType.h Mark.h OrdColl.h SeqColl.h
  484. EditTextItem.o: ObjArray.h View.h CheapText.h RestrTView.h BlankWin.h
  485. EditTextItem.o: Dialog.h
  486. EnumItem.o: EnumItem.h Cluster.h VObject.h EvtHandler.h Object.h Root.h
  487. EnumItem.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  488. EnumItem.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  489. EnumItem.o: Command.h Collection.h Iterator.h Filler.h ImageItem.h TextItem.h
  490. EnumItem.o: Expander.h Buttons.h VObjectPair.h ObjectTable.h
  491. EnumItem.o: images/SliderButtonUp.image images/SliderButtonDown.image
  492. EnumItem.o: images/SliderButtonUpInv.image images/SliderButtonDownInv.image
  493. Error.o: Error.h Types.h IO/stream.h Types.h String.h Storage.h CType.h
  494. Error.o: System.h Object.h Root.h CmdNo.h Class.h
  495. EvtHandler.o: EvtHandler.h Object.h Root.h Types.h IO/stream.h Types.h
  496. EvtHandler.o: CmdNo.h Class.h Port.h System.h Point.h Metric.h Rectangle.h
  497. EvtHandler.o: Font.h Ink.h Bitmap.h Token.h Command.h View.h VObject.h
  498. EvtHandler.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  499. EvtHandler.o: TextItem.h Clipper.h
  500. Expander.o: Expander.h VObject.h EvtHandler.h Object.h Root.h Types.h
  501. Expander.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  502. Expander.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  503. Expander.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  504. FileDialog.o: ET++.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  505. FileDialog.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h
  506. FileDialog.o: Ink.h Bitmap.h Token.h Application.h Dialog.h View.h VObject.h
  507. FileDialog.o: EvtHandler.h Command.h Collection.h Iterator.h Cluster.h
  508. FileDialog.o: Filler.h ImageItem.h TextItem.h Document.h FileType.h Window.h
  509. FileDialog.o: BlankWin.h Clipper.h BorderItems.h Scroller.h Splitter.h
  510. FileDialog.o: Expander.h Menu.h CollView.h LineItem.h VObjectPair.h String.h
  511. FileDialog.o: Storage.h CType.h Error.h Alert_e.h FileDialog.h PopupItem.h
  512. FileDialog.o: Buttons.h EditTextItem.h TextView.h StaticTView.h Text.h Mark.h
  513. FileDialog.o: OrdColl.h SeqColl.h ObjArray.h ScrollBar.h CheapText.h
  514. FileDialog.o: Directory.h images/directory.im images/file.im images/exec.im
  515. FileDialog.o: images/ascii.im
  516. FileType.o: FileType.h Root.h Types.h IO/stream.h Types.h System.h Object.h
  517. FileType.o: CmdNo.h Class.h String.h Storage.h CType.h Error.h
  518. Filler.o: Filler.h VObject.h EvtHandler.h Object.h Root.h Types.h IO/stream.h
  519. Filler.o: Types.h CmdNo.h Class.h Port.h System.h Point.h Metric.h
  520. Filler.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h Collection.h
  521. Filler.o: Iterator.h Cluster.h ImageItem.h TextItem.h
  522. FindDialog.o: RegularExp.h Object.h Root.h Types.h IO/stream.h Types.h
  523. FindDialog.o: CmdNo.h Class.h FindDialog.h Dialog.h View.h VObject.h
  524. FindDialog.o: EvtHandler.h Port.h System.h Point.h Metric.h Rectangle.h
  525. FindDialog.o: Font.h Ink.h Bitmap.h Token.h Command.h Collection.h Iterator.h
  526. FindDialog.o: Cluster.h Filler.h ImageItem.h TextItem.h Alert_e.h String.h
  527. FindDialog.o: Storage.h CType.h BorderItems.h OneOfCluster.h ManyOfCluster.h
  528. FindDialog.o: EditTextItem.h Clipper.h TextView.h StaticTView.h Text.h Mark.h
  529. FindDialog.o: OrdColl.h SeqColl.h ObjArray.h Buttons.h VObjectPair.h Window.h
  530. FindDialog.o: BlankWin.h Document.h FileType.h Expander.h Form.h
  531. FixLineTView.o: FixLineTView.h TextView.h StaticTView.h Text.h Object.h
  532. FixLineTView.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h String.h
  533. FixLineTView.o: Storage.h CType.h Font.h Rectangle.h Metric.h Point.h Port.h
  534. FixLineTView.o: System.h Ink.h Bitmap.h Token.h Mark.h OrdColl.h SeqColl.h
  535. FixLineTView.o: Collection.h Iterator.h ObjArray.h View.h VObject.h
  536. FixLineTView.o: EvtHandler.h Command.h Cluster.h Filler.h ImageItem.h
  537. FixLineTView.o: TextItem.h
  538. FixedStorage.o: FixedStorage.h Types.h IO/stream.h Types.h Storage.h String.h
  539. FixedStorage.o: CType.h Error.h
  540. FloatItem.o: FloatItem.h EditTextItem.h Clipper.h VObject.h EvtHandler.h
  541. FloatItem.o: Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  542. FloatItem.o: Port.h System.h Point.h Metric.h Rectangle.h Font.h Ink.h
  543. FloatItem.o: Bitmap.h Token.h Command.h Collection.h Iterator.h Cluster.h
  544. FloatItem.o: Filler.h ImageItem.h TextItem.h TextView.h StaticTView.h Text.h
  545. FloatItem.o: String.h Storage.h CType.h Mark.h OrdColl.h SeqColl.h ObjArray.h
  546. FloatItem.o: View.h CheapText.h RestrTView.h RegularExp.h Alert_e.h
  547. Font.o: Font.h Root.h Rectangle.h Metric.h Point.h Types.h IO/stream.h
  548. Font.o: Types.h Class.h Object.h CmdNo.h Error.h String.h Storage.h CType.h
  549. Font.o: WindowSystem.h Port.h System.h Ink.h Bitmap.h Token.h
  550. Form.o: Form.h Cluster.h VObject.h EvtHandler.h Object.h Root.h Types.h
  551. Form.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h Metric.h
  552. Form.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h Collection.h
  553. Form.o: Iterator.h Filler.h ImageItem.h TextItem.h BorderItems.h OrdColl.h
  554. Form.o: SeqColl.h ObjArray.h
  555. GapText.o: GapText.h Text.h Object.h Root.h Types.h IO/stream.h Types.h
  556. GapText.o: CmdNo.h Class.h String.h Storage.h CType.h Font.h Rectangle.h
  557. GapText.o: Metric.h Point.h Port.h System.h Ink.h Bitmap.h Token.h
  558. GapText.o: RegularExp.h Error.h
  559. GotoDialog.o: GotoDialog.h GotoDialog_e.h Dialog.h View.h VObject.h
  560. GotoDialog.o: EvtHandler.h Object.h Root.h Types.h IO/stream.h Types.h
  561. GotoDialog.o: CmdNo.h Class.h Port.h System.h Point.h Metric.h Rectangle.h
  562. GotoDialog.o: Font.h Ink.h Bitmap.h Token.h Command.h Collection.h Iterator.h
  563. GotoDialog.o: Cluster.h Filler.h ImageItem.h TextItem.h BlankWin.h Clipper.h
  564. GotoDialog.o: NumItem.h EditTextItem.h TextView.h StaticTView.h Text.h
  565. GotoDialog.o: String.h Storage.h CType.h Mark.h OrdColl.h SeqColl.h
  566. GotoDialog.o: ObjArray.h BorderItems.h Buttons.h VObjectPair.h EnumItem.h
  567. GotoDialog.o: Document.h FileType.h WindowSystem.h ObjectTable.h
  568. GraphView.o: ObjList.h SeqColl.h Collection.h Object.h Root.h Types.h
  569. GraphView.o: IO/stream.h Types.h CmdNo.h Class.h Iterator.h IdDictionary.h
  570. GraphView.o: Dictionary.h Set.h ObjArray.h OrdColl.h Dialog.h View.h
  571. GraphView.o: VObject.h EvtHandler.h Port.h System.h Point.h Metric.h
  572. GraphView.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h Cluster.h
  573. GraphView.o: Filler.h ImageItem.h TextItem.h GraphView.h TreeView.h
  574. Icon.o: Icon.h BlankWin.h Clipper.h VObject.h EvtHandler.h Object.h Root.h
  575. Icon.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  576. Icon.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  577. Icon.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  578. Icon.o: Menu.h CollView.h View.h LineItem.h VObjectPair.h BorderItems.h
  579. Icon.o: String.h Storage.h CType.h
  580. IdDictionary.o: IdDictionary.h Dictionary.h Set.h ObjArray.h Collection.h
  581. IdDictionary.o: Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  582. IdDictionary.o: Iterator.h
  583. ImageItem.o: ImageItem.h VObject.h EvtHandler.h Object.h Root.h Types.h
  584. ImageItem.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  585. ImageItem.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  586. ImageItem.o: Collection.h Iterator.h Cluster.h Filler.h TextItem.h
  587. Init.o: System.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  588. Init.o: WindowSystem.h Port.h Point.h Metric.h Rectangle.h Font.h Ink.h
  589. Init.o: Bitmap.h Token.h ProgEnv.h Error.h
  590. InitCol.o: System.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  591. InitCol.o: Class.h ProgEnv.h Error.h
  592. Ink.o: Ink.h Types.h IO/stream.h Types.h Object.h Root.h CmdNo.h Class.h
  593. Ink.o: String.h Storage.h CType.h Port.h System.h Point.h Metric.h
  594. Ink.o: Rectangle.h Font.h Bitmap.h Token.h WindowSystem.h
  595. Iterator.o: Iterator.h Root.h Types.h IO/stream.h Types.h Collection.h
  596. Iterator.o: Object.h CmdNo.h Class.h Error.h
  597. LineItem.o: LineItem.h VObject.h EvtHandler.h Object.h Root.h Types.h
  598. LineItem.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  599. LineItem.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  600. LineItem.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  601. ManyOfCluster.o: ManyOfCluster.h Cluster.h VObject.h EvtHandler.h Object.h
  602. ManyOfCluster.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h
  603. ManyOfCluster.o: System.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  604. ManyOfCluster.o: Token.h Command.h Collection.h Iterator.h Filler.h
  605. ManyOfCluster.o: ImageItem.h TextItem.h Buttons.h VObjectPair.h OrdColl.h
  606. ManyOfCluster.o: SeqColl.h ObjArray.h
  607. Mark.o: Mark.h OrdColl.h SeqColl.h Collection.h Object.h Root.h Types.h
  608. Mark.o: IO/stream.h Types.h CmdNo.h Class.h Iterator.h ObjArray.h
  609. Math.o: Math.h Types.h IO/stream.h Types.h
  610. Menu.o: Menu.h CollView.h View.h VObject.h EvtHandler.h Object.h Root.h
  611. Menu.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  612. Menu.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  613. Menu.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  614. Menu.o: LineItem.h VObjectPair.h BorderItems.h SortedOList.h ObjList.h
  615. Menu.o: SeqColl.h OrdColl.h ObjArray.h String.h Storage.h CType.h BlankWin.h
  616. Menu.o: Clipper.h WindowSystem.h
  617. MenuBar.o: MenuBar.h Clipper.h VObject.h EvtHandler.h Object.h Root.h Types.h
  618. MenuBar.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  619. MenuBar.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  620. MenuBar.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  621. MenuBar.o: Menu.h CollView.h View.h LineItem.h VObjectPair.h BorderItems.h
  622. MenuBar.o: OrdColl.h SeqColl.h ObjArray.h
  623. Metric.o: Metric.h Point.h Types.h IO/stream.h Types.h Class.h Object.h
  624. Metric.o: Root.h CmdNo.h String.h Storage.h CType.h
  625. NumItem.o: NumItem.h EditTextItem.h Clipper.h VObject.h EvtHandler.h Object.h
  626. NumItem.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  627. NumItem.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  628. NumItem.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  629. NumItem.o: TextItem.h TextView.h StaticTView.h Text.h String.h Storage.h
  630. NumItem.o: CType.h Mark.h OrdColl.h SeqColl.h ObjArray.h View.h CheapText.h
  631. NumItem.o: RestrTView.h RegularExp.h Alert_e.h
  632. ObjArray.o: ObjArray.h Collection.h Object.h Root.h Types.h IO/stream.h
  633. ObjArray.o: Types.h CmdNo.h Class.h Iterator.h Error.h Storage.h
  634. ObjArray.o: FixedStorage.h String.h CType.h
  635. ObjFloat.o: ObjFloat.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  636. ObjFloat.o: Class.h String.h Storage.h CType.h
  637. ObjInt.o: ObjInt.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  638. ObjInt.o: Class.h String.h Storage.h CType.h
  639. ObjList.o: ObjList.h SeqColl.h Collection.h Object.h Root.h Types.h
  640. ObjList.o: IO/stream.h Types.h CmdNo.h Class.h Iterator.h FixedStorage.h
  641. ObjList.o: System.h Storage.h
  642. Object.o: Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  643. Object.o: OrdColl.h SeqColl.h Collection.h Iterator.h ObjArray.h
  644. Object.o: IdDictionary.h Dictionary.h Set.h ObjInt.h Error.h String.h
  645. Object.o: Storage.h CType.h ProgEnv.h System.h ObjectTable.h ClassManager.h
  646. Object.o: AccessMem.h IO/membuf.h IO/streambuf.h
  647. ObjectTable.o: Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  648. ObjectTable.o: OrdColl.h SeqColl.h Collection.h Iterator.h ObjArray.h Set.h
  649. ObjectTable.o: ObjectTable.h System.h Error.h ClassManager.h AccessMem.h
  650. ObjectTable.o: String.h Storage.h CType.h
  651. OneOfCluster.o: OneOfCluster.h Cluster.h VObject.h EvtHandler.h Object.h
  652. OneOfCluster.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h
  653. OneOfCluster.o: System.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  654. OneOfCluster.o: Token.h Command.h Collection.h Iterator.h Filler.h
  655. OneOfCluster.o: ImageItem.h TextItem.h Buttons.h VObjectPair.h OrdColl.h
  656. OneOfCluster.o: SeqColl.h ObjArray.h
  657. OrdColl.o: OrdColl.h SeqColl.h Collection.h Object.h Root.h Types.h
  658. OrdColl.o: IO/stream.h Types.h CmdNo.h Class.h Iterator.h ObjArray.h Error.h
  659. OrdColl.o: FixedStorage.h
  660. Panner.o: Panner.h Slider.h VObject.h EvtHandler.h Object.h Root.h Types.h
  661. Panner.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  662. Panner.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  663. Panner.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  664. Panner.o: Clipper.h
  665. PathLookup.o: ByteArray.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  666. PathLookup.o: Class.h PathLookup.h OrdColl.h SeqColl.h Collection.h
  667. PathLookup.o: Iterator.h ObjArray.h System.h String.h Storage.h CType.h
  668. PictPort.o: PictPort.h PrintPort.h Port.h System.h Object.h Root.h Types.h
  669. PictPort.o: IO/stream.h Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h
  670. PictPort.o: Font.h Ink.h Bitmap.h Token.h Picture.h
  671. Picture.o: Picture.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  672. Picture.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h Ink.h
  673. Picture.o: Bitmap.h Token.h String.h Storage.h CType.h ObjArray.h
  674. Picture.o: Collection.h Iterator.h
  675. Point.o: Point.h Types.h IO/stream.h Types.h Class.h Object.h Root.h CmdNo.h
  676. Point.o: Math.h String.h Storage.h CType.h
  677. PopupItem.o: PopupItem.h Buttons.h VObject.h EvtHandler.h Object.h Root.h
  678. PopupItem.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  679. PopupItem.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  680. PopupItem.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  681. PopupItem.o: TextItem.h VObjectPair.h ShadowItem.h Menu.h CollView.h View.h
  682. PopupItem.o: LineItem.h BorderItems.h
  683. Port.o: Port.h System.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  684. Port.o: Class.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  685. Port.o: String.h Storage.h CType.h Error.h Picture.h WindowSystem.h
  686. Port.o: DevBitmap.h
  687. PrintDialog.o: PrintDialog.h Dialog.h View.h VObject.h EvtHandler.h Object.h
  688. PrintDialog.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h
  689. PrintDialog.o: System.h Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h
  690. PrintDialog.o: Token.h Command.h Collection.h Iterator.h Cluster.h Filler.h
  691. PrintDialog.o: ImageItem.h TextItem.h CheapText.h Text.h String.h Storage.h
  692. PrintDialog.o: CType.h OrdColl.h SeqColl.h ObjArray.h ObjectTable.h Error.h
  693. PrintDialog.o: Window.h BlankWin.h Clipper.h BorderItems.h PrintPort.h
  694. PrintDialog.o: Document.h FileType.h FileDialog.h VObjectPair.h ObjList.h
  695. PrintDialog.o: CollView.h Scroller.h Printer.h Alert_e.h NumItem.h
  696. PrintDialog.o: EditTextItem.h TextView.h StaticTView.h Mark.h Buttons.h
  697. PrintPort.o: PrintPort.h Port.h System.h Object.h Root.h Types.h IO/stream.h
  698. PrintPort.o: Types.h CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h
  699. PrintPort.o: Ink.h Bitmap.h Token.h String.h Storage.h CType.h Error.h
  700. Printer.o: Printer.h Dialog.h View.h VObject.h EvtHandler.h Object.h Root.h
  701. Printer.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  702. Printer.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  703. Printer.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  704. Printer.o: TextItem.h BlankWin.h Clipper.h Buttons.h VObjectPair.h
  705. Printer.o: BorderItems.h PrintPort.h
  706. ProgEnv.o: ProgEnv.h Types.h IO/stream.h Types.h Object.h Root.h CmdNo.h
  707. ProgEnv.o: Class.h
  708. PttyConnection.o: PttyConnection.h Types.h IO/stream.h Types.h Root.h
  709. Rectangle.o: Rectangle.h Metric.h Point.h Types.h IO/stream.h Types.h Class.h
  710. Rectangle.o: Object.h Root.h CmdNo.h Error.h Math.h String.h Storage.h
  711. Rectangle.o: CType.h
  712. RegularExp.o: Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  713. RegularExp.o: RegularExp.h String.h Storage.h CType.h ObjectTable.h
  714. RestrTView.o: RestrTView.h TextView.h StaticTView.h Text.h Object.h Root.h
  715. RestrTView.o: Types.h IO/stream.h Types.h CmdNo.h Class.h String.h Storage.h
  716. RestrTView.o: CType.h Font.h Rectangle.h Metric.h Point.h Port.h System.h
  717. RestrTView.o: Ink.h Bitmap.h Token.h Mark.h OrdColl.h SeqColl.h Collection.h
  718. RestrTView.o: Iterator.h ObjArray.h View.h VObject.h EvtHandler.h Command.h
  719. RestrTView.o: Cluster.h Filler.h ImageItem.h TextItem.h RegularExp.h
  720. RestrTView.o: BlankWin.h Clipper.h
  721. Root.o: Root.h
  722. RunArray.o: RunArray.h Collection.h Object.h Root.h Types.h IO/stream.h
  723. RunArray.o: Types.h CmdNo.h Class.h Iterator.h Error.h String.h Storage.h
  724. RunArray.o: CType.h
  725. ScrollBar.o: ScrollBar.h Expander.h VObject.h EvtHandler.h Object.h Root.h
  726. ScrollBar.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  727. ScrollBar.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  728. ScrollBar.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  729. ScrollBar.o: TextItem.h Slider.h Buttons.h VObjectPair.h ObjectTable.h
  730. ScrollBar.o: images/UpArrow.image images/UpArrowInv.image
  731. ScrollBar.o: images/DownArrow.image images/DownArrowInv.image
  732. ScrollBar.o: images/LeftArrow.image images/LeftArrowInv.image
  733. ScrollBar.o: images/RightArrow.image images/RightArrowInv.image
  734. Scroller.o: Scroller.h Cluster.h VObject.h EvtHandler.h Object.h Root.h
  735. Scroller.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  736. Scroller.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  737. Scroller.o: Command.h Collection.h Iterator.h Filler.h ImageItem.h TextItem.h
  738. Scroller.o: ScrollBar.h Expander.h Clipper.h View.h
  739. SeqColl.o: SeqColl.h Collection.h Object.h Root.h Types.h IO/stream.h Types.h
  740. SeqColl.o: CmdNo.h Class.h Iterator.h
  741. Set.o: Set.h ObjArray.h Collection.h Object.h Root.h Types.h IO/stream.h
  742. Set.o: Types.h CmdNo.h Class.h Iterator.h Error.h Math.h
  743. ShadowItem.o: ShadowItem.h VObject.h EvtHandler.h Object.h Root.h Types.h
  744. ShadowItem.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  745. ShadowItem.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  746. ShadowItem.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  747. ShadowItem.o: TextItem.h
  748. ShellTView.o: Port.h System.h Object.h Root.h Types.h IO/stream.h Types.h
  749. ShellTView.o: CmdNo.h Class.h Point.h Metric.h Rectangle.h Font.h Ink.h
  750. ShellTView.o: Bitmap.h Token.h Iterator.h ShellTView.h FixLineTView.h
  751. ShellTView.o: TextView.h StaticTView.h Text.h String.h Storage.h CType.h
  752. ShellTView.o: Mark.h OrdColl.h SeqColl.h Collection.h ObjArray.h View.h
  753. ShellTView.o: VObject.h EvtHandler.h Command.h Cluster.h Filler.h ImageItem.h
  754. ShellTView.o: TextItem.h PttyConnection.h StyledText.h GapText.h RunArray.h
  755. ShellTView.o: CheapText.h Alert_e.h Menu.h CollView.h LineItem.h
  756. ShellTView.o: VObjectPair.h BorderItems.h BlankWin.h Clipper.h WindowSystem.h
  757. ShellTView.o: images/revCaret.image
  758. Slider.o: Slider.h VObject.h EvtHandler.h Object.h Root.h Types.h IO/stream.h
  759. Slider.o: Types.h CmdNo.h Class.h Port.h System.h Point.h Metric.h
  760. Slider.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h Collection.h
  761. Slider.o: Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  762. SortedOList.o: SortedOList.h ObjList.h SeqColl.h Collection.h Object.h Root.h
  763. SortedOList.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Iterator.h
  764. Splitter.o: Splitter.h VObject.h EvtHandler.h Object.h Root.h Types.h
  765. Splitter.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  766. Splitter.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  767. Splitter.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h TextItem.h
  768. Splitter.o: Scroller.h
  769. StaticTView.o: StaticTView.h Text.h Object.h Root.h Types.h IO/stream.h
  770. StaticTView.o: Types.h CmdNo.h Class.h String.h Storage.h CType.h Font.h
  771. StaticTView.o: Rectangle.h Metric.h Point.h Port.h System.h Ink.h Bitmap.h
  772. StaticTView.o: Token.h Mark.h OrdColl.h SeqColl.h Collection.h Iterator.h
  773. StaticTView.o: ObjArray.h View.h VObject.h EvtHandler.h Command.h Cluster.h
  774. StaticTView.o: Filler.h ImageItem.h TextItem.h BlankWin.h Clipper.h
  775. StaticTView.o: FixedStorage.h TextFormatter.h
  776. Storage.o: Storage.h Types.h IO/stream.h Types.h System.h Object.h Root.h
  777. Storage.o: CmdNo.h Class.h Error.h FixedStorage.h MALLOC/storage.h
  778. StreamConnection.o: StreamConnection.h System.h Object.h Root.h Types.h
  779. StreamConnection.o: IO/stream.h Types.h CmdNo.h Class.h SUNWINDOW/Clipboard.h
  780. StreamConnection.o: Error.h
  781. String.o: String.h Types.h IO/stream.h Types.h Storage.h CType.h Error.h
  782. StyledText.o: StyledText.h GapText.h Text.h Object.h Root.h Types.h
  783. StyledText.o: IO/stream.h Types.h CmdNo.h Class.h String.h Storage.h CType.h
  784. StyledText.o: Font.h Rectangle.h Metric.h Point.h Port.h System.h Ink.h
  785. StyledText.o: Bitmap.h Token.h RunArray.h Collection.h Iterator.h Mark.h
  786. StyledText.o: OrdColl.h SeqColl.h ObjArray.h Error.h ObjectTable.h
  787. System.o: System.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h
  788. System.o: Class.h ObjList.h SeqColl.h Collection.h Iterator.h FileType.h
  789. System.o: ObjectTable.h String.h Storage.h CType.h Error.h Directory.h
  790. System.o: OrdColl.h ObjArray.h
  791. Text.o: Text.h Object.h Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h
  792. Text.o: String.h Storage.h CType.h Font.h Rectangle.h Metric.h Point.h Port.h
  793. Text.o: System.h Ink.h Bitmap.h Token.h Error.h RegularExp.h Mark.h OrdColl.h
  794. Text.o: SeqColl.h Collection.h Iterator.h ObjArray.h
  795. TextCmd.o: TextView.h StaticTView.h Text.h Object.h Root.h Types.h
  796. TextCmd.o: IO/stream.h Types.h CmdNo.h Class.h String.h Storage.h CType.h
  797. TextCmd.o: Font.h Rectangle.h Metric.h Point.h Port.h System.h Ink.h Bitmap.h
  798. TextCmd.o: Token.h Mark.h OrdColl.h SeqColl.h Collection.h Iterator.h
  799. TextCmd.o: ObjArray.h View.h VObject.h EvtHandler.h Command.h Cluster.h
  800. TextCmd.o: Filler.h ImageItem.h TextItem.h TextCmd.h StyledText.h GapText.h
  801. TextCmd.o: RunArray.h
  802. TextFormatter.o: TextFormatter.h Object.h Root.h Types.h IO/stream.h Types.h
  803. TextFormatter.o: CmdNo.h Class.h StaticTView.h Text.h String.h Storage.h
  804. TextFormatter.o: CType.h Font.h Rectangle.h Metric.h Point.h Port.h System.h
  805. TextFormatter.o: Ink.h Bitmap.h Token.h Mark.h OrdColl.h SeqColl.h
  806. TextFormatter.o: Collection.h Iterator.h ObjArray.h View.h VObject.h
  807. TextFormatter.o: EvtHandler.h Command.h Cluster.h Filler.h ImageItem.h
  808. TextFormatter.o: TextItem.h
  809. TextItem.o: TextItem.h VObject.h EvtHandler.h Object.h Root.h Types.h
  810. TextItem.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  811. TextItem.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  812. TextItem.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h String.h
  813. TextItem.o: Storage.h CType.h
  814. TextView.o: TextView.h StaticTView.h Text.h Object.h Root.h Types.h
  815. TextView.o: IO/stream.h Types.h CmdNo.h Class.h String.h Storage.h CType.h
  816. TextView.o: Font.h Rectangle.h Metric.h Point.h Port.h System.h Ink.h
  817. TextView.o: Bitmap.h Token.h Mark.h OrdColl.h SeqColl.h Collection.h
  818. TextView.o: Iterator.h ObjArray.h View.h VObject.h EvtHandler.h Command.h
  819. TextView.o: Cluster.h Filler.h ImageItem.h TextItem.h TextCmd.h StyledText.h
  820. TextView.o: GapText.h RunArray.h BlankWin.h Clipper.h Menu.h CollView.h
  821. TextView.o: LineItem.h VObjectPair.h BorderItems.h Error.h ChangeDialog.h
  822. TextView.o: FindDialog.h Dialog.h Document.h FileType.h RegularExp.h
  823. TextView.o: ClipBoard.h TextFormatter.h ObjectTable.h images/Caret.image
  824. Token.o: Token.h Rectangle.h Metric.h Point.h Types.h IO/stream.h Types.h
  825. Token.o: Class.h Object.h Root.h CmdNo.h
  826. TreeView.o: TreeView.h Dialog.h View.h VObject.h EvtHandler.h Object.h Root.h
  827. TreeView.o: Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  828. TreeView.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  829. TreeView.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  830. TreeView.o: TextItem.h Menu.h CollView.h LineItem.h VObjectPair.h
  831. TreeView.o: BorderItems.h String.h Storage.h CType.h OrdColl.h SeqColl.h
  832. TreeView.o: ObjArray.h
  833. Types.o: Types.h IO/stream.h Types.h String.h Storage.h CType.h Class.h
  834. Types.o: Object.h Root.h CmdNo.h
  835. VObject.o: VObject.h EvtHandler.h Object.h Root.h Types.h IO/stream.h Types.h
  836. VObject.o: CmdNo.h Class.h Port.h System.h Point.h Metric.h Rectangle.h
  837. VObject.o: Font.h Ink.h Bitmap.h Token.h Command.h Collection.h Iterator.h
  838. VObject.o: Cluster.h Filler.h ImageItem.h TextItem.h Menu.h CollView.h View.h
  839. VObject.o: LineItem.h VObjectPair.h BorderItems.h BlankWin.h Clipper.h
  840. VObject.o: WindowSystem.h String.h Storage.h CType.h OrdColl.h SeqColl.h
  841. VObject.o: ObjArray.h
  842. VObjectPair.o: VObjectPair.h VObject.h EvtHandler.h Object.h Root.h Types.h
  843. VObjectPair.o: IO/stream.h Types.h CmdNo.h Class.h Port.h System.h Point.h
  844. VObjectPair.o: Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h Command.h
  845. VObjectPair.o: Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  846. VObjectPair.o: TextItem.h
  847. VObjectTView.o: VObjectTView.h TextView.h StaticTView.h Text.h Object.h
  848. VObjectTView.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h String.h
  849. VObjectTView.o: Storage.h CType.h Font.h Rectangle.h Metric.h Point.h Port.h
  850. VObjectTView.o: System.h Ink.h Bitmap.h Token.h Mark.h OrdColl.h SeqColl.h
  851. VObjectTView.o: Collection.h Iterator.h ObjArray.h View.h VObject.h
  852. VObjectTView.o: EvtHandler.h Command.h Cluster.h Filler.h ImageItem.h
  853. VObjectTView.o: TextItem.h VObjectText.h StyledText.h GapText.h RunArray.h
  854. VObjectTView.o: Clipper.h
  855. VObjectText.o: VObjectText.h StyledText.h GapText.h Text.h Object.h Root.h
  856. VObjectText.o: Types.h IO/stream.h Types.h CmdNo.h Class.h String.h Storage.h
  857. VObjectText.o: CType.h Font.h Rectangle.h Metric.h Point.h Port.h System.h
  858. VObjectText.o: Ink.h Bitmap.h Token.h RunArray.h Collection.h Iterator.h
  859. VObjectText.o: Mark.h OrdColl.h SeqColl.h ObjArray.h TextView.h StaticTView.h
  860. VObjectText.o: View.h VObject.h EvtHandler.h Command.h Cluster.h Filler.h
  861. VObjectText.o: ImageItem.h TextItem.h
  862. View.o: View.h VObject.h EvtHandler.h Object.h Root.h Types.h IO/stream.h
  863. View.o: Types.h CmdNo.h Class.h Port.h System.h Point.h Metric.h Rectangle.h
  864. View.o: Font.h Ink.h Bitmap.h Token.h Command.h Collection.h Iterator.h
  865. View.o: Cluster.h Filler.h ImageItem.h TextItem.h Error.h Document.h
  866. View.o: FileType.h Menu.h CollView.h LineItem.h VObjectPair.h BorderItems.h
  867. View.o: ClipBoard.h PrintDialog.h Dialog.h Alert_e.h Clipper.h OrdColl.h
  868. View.o: SeqColl.h ObjArray.h String.h Storage.h CType.h
  869. Window.o: Window.h BlankWin.h Clipper.h VObject.h EvtHandler.h Object.h
  870. Window.o: Root.h Types.h IO/stream.h Types.h CmdNo.h Class.h Port.h System.h
  871. Window.o: Point.h Metric.h Rectangle.h Font.h Ink.h Bitmap.h Token.h
  872. Window.o: Command.h Collection.h Iterator.h Cluster.h Filler.h ImageItem.h
  873. Window.o: TextItem.h BorderItems.h Error.h Menu.h CollView.h View.h
  874. Window.o: LineItem.h VObjectPair.h String.h Storage.h CType.h Buttons.h
  875. Window.o: WindowSystem.h WindowPort.h ObjectTable.h images/StretchBoxNE.image
  876. Window.o: images/StretchBoxNW.image images/StretchBoxSE.image
  877. Window.o: images/StretchBoxSW.image
  878. WindowPort.o: WindowPort.h Port.h System.h Object.h Root.h Types.h
  879. WindowPort.o: IO/stream.h Types.h CmdNo.h Class.h Point.h Metric.h
  880. WindowPort.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h WindowSystem.h
  881. WindowPort.o: Error.h Math.h Storage.h
  882. WindowSystem.o: WindowSystem.h Port.h System.h Object.h Root.h Types.h
  883. WindowSystem.o: IO/stream.h Types.h CmdNo.h Class.h Point.h Metric.h
  884. WindowSystem.o: Rectangle.h Font.h Ink.h Bitmap.h Token.h String.h Storage.h
  885. WindowSystem.o: CType.h Error.h WindowPort.h ClipBoard.h DevBitmap.h
  886. regex.o: regex.h
  887.